home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 6_functions / srand < prev    next >
Encoding:
Text File  |  2002-10-28  |  424 b   |  21 lines

  1. Synopsis:
  2.    $srand(<seed>)
  3.  
  4. Technical:
  5.    This function seeds the random number generator used by $rand().
  6.  
  7. Practical:
  8.    This function is used to help truly randomize the client's random number
  9.    generator.  In general, a larger seed will produce more unpredictable
  10.    results (which is good).
  11.  
  12. Returns:
  13.    empty string
  14.  
  15. Examples:
  16.    $srand($time())             a very large seed
  17.  
  18. See Also:
  19.    rand(6)
  20.  
  21.